home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / a_utils / perl / msds-prl / prl386ld.zoo / makefile.386 < prev    next >
Makefile  |  1992-07-02  |  316b  |  19 lines

  1. #
  2. # make a library for MS-DOS stuff needed to build perl with DJGPP
  3. # all sources come from the perl distribution
  4. # Hitoshi Doi <doi@jrd.dec.com>, 1992.06.28
  5. #
  6.  
  7. CC=gcc
  8.  
  9. CFLAGS    = -O -DMSDOS -DDJGPP
  10.  
  11. OBJS    = msdos.o popen.o
  12.  
  13. libmsdos.a: $(OBJS)
  14.     ar rcv libmsdos.a $(OBJS)
  15.  
  16. .c.o:
  17.     gcc $(CFLAGS) -c $<
  18.  
  19.